body{
    margin: 0;
    background-color: black;
    color: white;
    height: 1800px;
    font-family: 'Roboto Mono', monospace;
}

#fakeBody{
    display: grid;
    grid-template-rows: 50px 1fr 50px;
    height: 1800px;
}

header{
    grid-row: 1;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000000;
    position: fixed;
    z-index: 1;
}

#logo{
    margin-left: 30px;
    font-size: 25px;
}

nav{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-right: 30px;
}

nav>div{
    display: flex;
    flex-direction: column;
    align-items: center;
}

header>nav>div>div{
    height: 2px;
    width: 60px;
}

.menu1{
    animation: linha 1s forwards alternate;
}

.menu2{
    animation: linha2 1s forwards alternate;
} 

nav>div>a{
    display: inline-block;
    text-decoration: none;
    color: white;
    margin-right: 20px;
    margin-left: 20px;
    font-size: 25px;
}

#content{
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 400px 600px 600px 1fr;
}

#main{
    height: 400px;
    width: 100%;
    grid-column: 1 / 13;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#contentMain{
    height: 400px;
    width: 1000px;
    grid-column: 1 / 13;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.textoMain{
    display: grid;
    grid-template-columns: 70px 1fr;
}

.textoMain>p{
    margin: 0;
    font-size: 20px;
}

#ola{
    grid-column: 1;
}

.textoMain>div{
    height: 2px;
    width: 100%;
    background-color: white;
    align-self: center;
}

#euSou{
    font-size: 40px;
    grid-column: 1/3;
}

#estudante{
    grid-column: 1/3;
}

#imgMain>img{
    height: 200px;
    width: 200px;
    border-radius: 50%;
    background-color: black;
}
.azul{
    background-color: #26D0CE;
}

#curriculo{
    grid-column: 1 / 13;
    grid-row: 2;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    max-width: 850px;
    justify-self: center;
}

#curriculo>p{
    margin-top: 20px;
    font-size: 40px;
}

.linhaCurriculo{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    justify-content: center;
}

.itemCurriculo{
    height: 200px;
    width: 400px;
    background-color: rgba(255, 255, 255, 0.150);
    border-radius: 10px;
    margin: 10px;
}

.itemCurriculoConteudo{
    color: #26D0CE;
    font-size: 20px;
    margin: 20px;
}

.quando{
    margin: 0;
    margin-left: 0;
}

.oQue{
    color: white;
    margin: 0;
    margin-left: 0;
}

.onde{
    color: rgba(255, 255, 255, 0.600);
    font-size: 15px;
    margin: 0;
    margin-left: 0;
}

.como{
    color: rgba(255, 255, 255, 0.600);
    font-size: 15px;
    margin: 5px;
    margin-left: 0;
    font-family: 'Playfair Display', serif;
}

footer{
    grid-row: 3;
    background-color: #26D0CE;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#habilidades{
    width: 100%;
    max-width: 850px;
    grid-row: 3;
    grid-column: 1 / 13;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 50px 1fr 1fr 1fr;
    grid-gap: 10px;
    justify-content: center;
    justify-self: center;
}

#habilidades>p{
    justify-self: center;
    grid-column: 1 / 4;
    font-size: 40px;
    grid-row: 1;
    margin: 0
}

.itemHabilidade>img{
    max-height: 140px;
}

.itemHabilidade{
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.150);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#itemHabilidade1{
    grid-row: 2;
    grid-column: 1;
}

#itemHabilidade2{
    grid-row: 2;
    grid-column: 2;
}

#itemHabilidade3{
    grid-row: 2;
    grid-column: 3;
    display: flex;
    flex-direction: column;
}

#itemHabilidade3>p{
    color: #26D0CE;
    margin: 0;
}

#itemHabilidade3>img{
    transform: scale(0.8)
}

#itemHabilidade4{
    grid-row: 3;
    grid-column: 1;
}

#itemHabilidade5{
    grid-row: 3;
    grid-column: 2;
}

#itemHabilidade6{
    grid-row: 3;
    grid-column: 3;
}

#itemHabilidade7{
    grid-row: 4;
    grid-column: 1;
}

#itemHabilidade8{
    grid-row: 4;
    grid-column: 2;
}

#itemHabilidade9{
    grid-row: 4;
    grid-column: 3;
}

.itemCurriculo:hover{
    animation: highlights;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.itemHabilidade:hover{
    animation: highlights;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes linha {
    from {transform: scaleX(0);
          background-color: #26D0CE;}
    to {transform: scaleX(1);
        background-color:#26D0CE;}
}

@keyframes linha2 {
    from {transform: scaleX(1);
          background-color:#26D0CE;}
    to {transform: scaleX(0);
        background-color:#26D0CE;}
}

@keyframes highlights{
    from{
        transform: scale(1);
    }
    to{
        transform: scale(1.05);
        background-color:rgba(38, 208, 205, 0.096);
    }
}